diff options
author | Timo Teräs <timo.teras@iki.fi> | 2013-09-30 06:50:11 +0000 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2013-09-30 06:50:11 +0000 |
commit | 3cbacc3c5e414a58ae215445519eb46db4921e08 (patch) | |
tree | fdda868b3483e251d6dd9c91f429ae094f093b45 /main/rtorrent | |
parent | d48c529a8295229678d40751772417ef08a681f4 (diff) | |
download | aports-3cbacc3c5e414a58ae215445519eb46db4921e08.tar.bz2 aports-3cbacc3c5e414a58ae215445519eb46db4921e08.tar.xz |
main/[various]: update config.sub
Diffstat (limited to 'main/rtorrent')
-rw-r--r-- | main/rtorrent/APKBUILD | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/main/rtorrent/APKBUILD b/main/rtorrent/APKBUILD index 24399d2fca..9937e9d43e 100644 --- a/main/rtorrent/APKBUILD +++ b/main/rtorrent/APKBUILD @@ -11,8 +11,15 @@ makedepends='libsigc++-dev libtorrent-dev curl-dev xmlrpc-c-dev ncurses-dev' subpackages="$pkgname-doc" source="http://libtorrent.rakshasa.no/downloads/${pkgname}-${pkgver}.tar.gz" +_builddir="$srcdir/$pkgname-$pkgver" + +prepare() { + cd "$_builddir" + update_config_sub || return 1 +} + build() { - cd "$srcdir"/$pkgname-$pkgver + cd "$_builddir" export LDFLAGS="$LDFLAGS -lpthread" ./configure \ @@ -27,7 +34,7 @@ build() { } package() { - cd "$srcdir"/$pkgname-$pkgver + cd "$_builddir" make DESTDIR="$pkgdir" install install -D doc/rtorrent.rc "$pkgdir"/usr/share/doc/rtorrent/rtorrent.r } |