diff options
author | Francesco Colista <fcolista@alpinelinux.org> | 2017-01-18 14:57:23 +0000 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2017-01-19 09:38:19 +0000 |
commit | 98c6cc8925c5d7967a22fa303c6a53e9512720c7 (patch) | |
tree | d6a29b9359f7c7e2fddac280e4c73f8e4bf89303 /community | |
parent | fb2880a509436727b66aff23efbd09dc752ccd01 (diff) | |
download | aports-98c6cc8925c5d7967a22fa303c6a53e9512720c7.tar.bz2 aports-98c6cc8925c5d7967a22fa303c6a53e9512720c7.tar.xz |
community/compton: bump pkgrel due to dbus-dev upgrade. Simplified APKBUILD
Diffstat (limited to 'community')
-rw-r--r-- | community/compton/APKBUILD | 24 |
1 files changed, 6 insertions, 18 deletions
diff --git a/community/compton/APKBUILD b/community/compton/APKBUILD index b4f2cc6bf5..3c7d7ba02c 100644 --- a/community/compton/APKBUILD +++ b/community/compton/APKBUILD @@ -2,38 +2,26 @@ # Maintainer: Francesco Colista <fcolista@alpinelinux.org> pkgname=compton pkgver=0.1_beta2 -pkgrel=0 +pkgrel=1 pkgdesc="X Compositor (a fork of xcompmgr-dana)" url="https://github.com/chjj/compton" arch="all" license="MIT" -depends="" -depends_dev="libx11-dev libxcomposite-dev libxinerama-dev libxdamage-dev \ - libconfig-dev pcre-dev libxrandr-dev dbus-dev libdrm-dev mesa-dev" -makedepends="$depends_dev asciidoc" +makedepends="libx11-dev libxcomposite-dev libxinerama-dev libxdamage-dev \ + libconfig-dev pcre-dev libxrandr-dev dbus-dev libdrm-dev mesa-dev asciidoc" install="" subpackages="$pkgname-doc" source="$pkgname-$pkgver.tar.gz::https://github.com/chjj/$pkgname/archive/v$pkgver.tar.gz" -_builddir="$srcdir"/$pkgname-$pkgver -prepare() { - local i - cd "$_builddir" - for i in $source; do - case $i in - *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; - esac - done - sed -i "s:\(COMPTON_VERSION ?= \)git.*:\1v${pkgver}:" Makefile -} +builddir="$srcdir"/$pkgname-$pkgver build() { - cd "$_builddir" + cd "$builddir" make PREFIX=/usr } package() { - cd "$_builddir" + cd "$builddir" make PREFIX="$pkgdir"/usr install install -D -m644 "LICENSE" "$pkgdir"/usr/share/licenses/$pkgname/LICENSE install -D -m644 "compton.sample.conf" "$pkgdir/etc/xdg/compton.conf.example" |