From c11765fe516b80d1624ad07683df89710562ea56 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 14 Jul 2011 17:03:17 +0000 Subject: Initial APKBUILD for rpmlint Package description: rpmlint is a tool for checking common errors in RPM packages. It can be used to test individual packages. By default all checks are processed but specific checks can be performed by using command line parameters. --- testing/rpmlint/APKBUILD | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 testing/rpmlint/APKBUILD (limited to 'testing/rpmlint') diff --git a/testing/rpmlint/APKBUILD b/testing/rpmlint/APKBUILD new file mode 100644 index 0000000000..abb06ad9a7 --- /dev/null +++ b/testing/rpmlint/APKBUILD @@ -0,0 +1,28 @@ +# Contributor: Fabian Affolter +# Maintainer: Fabian Affolter +pkgname=rpmlint +pkgver=1.3 +pkgrel=0 +pkgdesc="A tool for checking common errors in RPM packages" +url="http://rpmlint.zarb.org" +arch="noarch" +license="GPL2" +depends="python" +depends_dev="" +makedepends="python-dev" +install="" +subpackages="$pkgname-doc" +source="http://rpmlint.zarb.org/download/$pkgname-$pkgver.tar.xz" +_builddir="$srcdir"/$pkgname-$pkgver + +build() { + cd "$_builddir" + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install +} + +md5sums="afe1b906776d1ab8148888c25fd31006 rpmlint-1.3.tar.xz" -- cgit v1.2.3