diff options
Diffstat (limited to 'community/etl/PKGBUILD')
-rw-r--r-- | community/etl/PKGBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/community/etl/PKGBUILD b/community/etl/PKGBUILD new file mode 100644 index 000000000..8dec73e1c --- /dev/null +++ b/community/etl/PKGBUILD @@ -0,0 +1,24 @@ +# Contributor: Franco Iacomella <yaco@gnu.org> + +pkgname=etl +_lpkgname=ETL +_lpkgdl=synfig +pkgver=0.04.13 +pkgrel=1 +pkgdesc="VoriaETL: C++ STL complementory multiplatform template library" +arch=(i686 x86_64) +url="http://synfig.org" +license=('GPL2') +depends=() +conflicts=('synfig-etl') +replaces=('synfig-etl') +source=(http://downloads.sourceforge.net/sourceforge/$_lpkgdl/$_lpkgname-$pkgver.tar.gz) +md5sums=('d52253adeb219d2fa554cbd744dfff29') + +build() { + cd $srcdir/$_lpkgname-$pkgver + + ./configure --prefix=/usr + make || return 1 + make DESTDIR=$pkgdir install +} |