mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-13 11:51:38 +01:00
30 lines
698 B
Plaintext
30 lines
698 B
Plaintext
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=rpmlint
|
|
pkgver=1.4
|
|
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 || return 1
|
|
rm -f "$pkgdir"/usr/lib/*.la
|
|
}
|
|
|
|
md5sums="bfbdd78847ca2b253c2e4e65c41f49e2 rpmlint-1.4.tar.xz"
|