diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-06-16 13:21:58 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-06-16 13:21:58 -0300 |
commit | ae725ad3435e02f5a191975f11c13476f522db2f (patch) | |
tree | 28a907f0dd14c9f52b120143e37159209c3485f7 /community/etl | |
parent | 1dae0fd04f3af9134ba98d25a2309a80723e4e5e (diff) | |
parent | ebe74a263db3899367e12d936f908cdfdee7ec15 (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
multilib/q4wine/PKGBUILD
Diffstat (limited to 'community/etl')
-rw-r--r-- | community/etl/PKGBUILD | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/community/etl/PKGBUILD b/community/etl/PKGBUILD index 56cacebcb..25aaf34b9 100644 --- a/community/etl/PKGBUILD +++ b/community/etl/PKGBUILD @@ -1,9 +1,7 @@ # Contributor: Franco Iacomella <yaco@gnu.org> pkgname=etl -_lpkgname=ETL -_lpkgdl=synfig -pkgver=0.04.13 +pkgver=0.04.14 pkgrel=1 pkgdesc="VoriaETL: C++ STL complementory multiplatform template library" arch=(i686 x86_64 'mips64el') @@ -12,13 +10,17 @@ license=('GPL2') depends=() conflicts=('synfig-etl') replaces=('synfig-etl') -source=(http://downloads.sourceforge.net/sourceforge/$_lpkgdl/$_lpkgname-$pkgver.tar.gz) -md5sums=('d52253adeb219d2fa554cbd744dfff29') +source=(http://arch.p5n.pp.ru/~sergej/dl/synfig-0.63.00.tar.gz) +md5sums=('ea3633e9522ae89489519af351ba2443') build() { - cd $srcdir/$_lpkgname-$pkgver - - ./configure --prefix=/usr - make || return 1 + 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 } |