diff options
author | Bartłomiej Piotrowski <bpiotrowski@alpinelinux.org> | 2013-12-26 20:59:52 +0100 |
---|---|---|
committer | Bartłomiej Piotrowski <bpiotrowski@alpinelinux.org> | 2013-12-26 20:59:52 +0100 |
commit | f99b01c987ab7ad85f63756f58235217726fd971 (patch) | |
tree | 6da28f35e64e459e581b1acdb35f1f4f9387a25c /testing/yum | |
parent | c855ddedea39824c64d2d7d45b89db04502668c1 (diff) | |
download | aports-f99b01c987ab7ad85f63756f58235217726fd971.tar.bz2 aports-f99b01c987ab7ad85f63756f58235217726fd971.tar.xz |
testing/yum: new aport
Diffstat (limited to 'testing/yum')
-rw-r--r-- | testing/yum/APKBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/testing/yum/APKBUILD b/testing/yum/APKBUILD new file mode 100644 index 0000000000..e5679d478a --- /dev/null +++ b/testing/yum/APKBUILD @@ -0,0 +1,27 @@ +# Maintainer: +# Contributor: Bartłomiej Piotrowski <bpiotrowski@archlinux.org> + +pkgname=yum +pkgver=3.4.3 +pkgrel=0 +pkgdesc='Advanced front-end for rpm' +arch=noarch +license='GPL' +url='http://yum.baseurl.org' +depends='python py-urlgrabber py-pysqlite yum-metadata-parser py-iniparse rpm' +makedepends='intltool' +subpackages="$pkgname-doc $pkgname-lang" +source="$url/download/3.4/yum-$pkgver.tar.gz" + +build() { + make -C "$srcdir"/$pkgname-$pkgver || return 1 +} + +package() { + make -C "$srcdir"/$pkgname-$pkgver DESTDIR="$pkgdir" install || return 1 + rm -rf "$pkgdir"/etc/rc.d +} + +md5sums="7c8ea8beba5b4e7fe0c215e4ebaa26ed yum-3.4.3.tar.gz" +sha256sums="0178f97820ced9bfbcc269e6fc3ea35e29e35e2d263d24c7bff8660ee62d37ca yum-3.4.3.tar.gz" +sha512sums="e72f83ba090ba7453a78954437dd14b8f818302464d0a278b60c2c5e0530684db0cece60cb30fce85d8014034c857da3696e1e51e08fddde39be66f3ad1eb817 yum-3.4.3.tar.gz" |