mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
24 lines
561 B
Bash
24 lines
561 B
Bash
# Contributor: Franco Iacomella <yaco@gnu.org>
|
|
|
|
pkgname=etl
|
|
_pkgname=ETL
|
|
_pkgdl=synfig
|
|
pkgver=0.04.12
|
|
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/$_pkgdl/$_pkgname-$pkgver.tar.gz)
|
|
|
|
build() {
|
|
cd $srcdir/$_pkgname-$pkgver
|
|
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install
|
|
}
|
|
md5sums=('4cd7fb673fa5c77cfa1986aeecdb3ffe')
|