summaryrefslogtreecommitdiff
path: root/community/etl/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/etl/PKGBUILD')
-rw-r--r--community/etl/PKGBUILD26
1 files changed, 26 insertions, 0 deletions
diff --git a/community/etl/PKGBUILD b/community/etl/PKGBUILD
new file mode 100644
index 000000000..25aaf34b9
--- /dev/null
+++ b/community/etl/PKGBUILD
@@ -0,0 +1,26 @@
+# Contributor: Franco Iacomella <yaco@gnu.org>
+
+pkgname=etl
+pkgver=0.04.14
+pkgrel=1
+pkgdesc="VoriaETL: C++ STL complementory multiplatform template library"
+arch=(i686 x86_64 'mips64el')
+url="http://synfig.org"
+license=('GPL2')
+depends=()
+conflicts=('synfig-etl')
+replaces=('synfig-etl')
+source=(http://arch.p5n.pp.ru/~sergej/dl/synfig-0.63.00.tar.gz)
+md5sums=('ea3633e9522ae89489519af351ba2443')
+
+build() {
+ cd $srcdir/synfig-fb5ba9c/ETL
+ [ -f configure ] || { libtoolize --ltdl --copy --force && autoreconf --install --force; }
+ [ -f Makefile ] || ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd $srcdir/synfig-fb5ba9c/ETL
+ make DESTDIR=$pkgdir install
+}