mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-28 23:21:53 +00:00
21 lines
608 B
Bash
21 lines
608 B
Bash
# Maintainer: Allan McRae <allan@archlinux.org>
|
|
|
|
pkgname=aqpm
|
|
pkgver=1.3.3.2
|
|
pkgrel=1
|
|
_sha1id=0470fcf7a080fc6cb314162d9673c9693a9509dd
|
|
pkgdesc="Qt wrapper around pacman's libalpm"
|
|
arch=('i686' 'x86_64')
|
|
url="http://chakra-project.org/tools-shaman.html"
|
|
license=('GPL')
|
|
depends=('pacman>3.3' 'pacman<3.4' 'polkit-qt')
|
|
makedepends=('cmake' 'automoc4')
|
|
source=(aqpm-${pkgver}.tar.gz::http://github.com/drf/aqpm/tarball/${pkgver})
|
|
md5sums=('3445a3888b36ba595934f1a106ca349f')
|
|
|
|
build() {
|
|
cd ${srcdir}/drf-aqpm-${_sha1id}
|
|
cmake . -DCMAKE_INSTALL_PREFIX=/usr
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install
|
|
}
|