diff options
-rw-r--r-- | main/py-ethtool/APKBUILD | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/main/py-ethtool/APKBUILD b/main/py-ethtool/APKBUILD index de58b1ea59..0af006922e 100644 --- a/main/py-ethtool/APKBUILD +++ b/main/py-ethtool/APKBUILD @@ -6,18 +6,17 @@ pkgrel=0 pkgdesc="Python library for the ethtool kernel interface" url="http://www.ohloh.net/p/python-ethtool" arch="all" -license="GPL" +license="GPL2" depends= depends_dev="libnl-dev pkgconfig python-dev" makedepends="$depends_dev" install= subpackages= source="http://dsommers.fedorapeople.org/python-ethtool/$_realname-$pkgver.tar.bz2 - python-ethtool-libnl-1.0-support.patch" + python-ethtool-libnl-1.0-support.patch" _builddir="$srcdir"/$_realname-$pkgver - prepare() { cd "$_builddir" local i @@ -36,7 +35,7 @@ build() { package() { cd "$_builddir" - make DESTDIR="$pkgdir" install + make DESTDIR="$pkgdir" install || return 1 # python setup.py install --root="$pkgdir" } |