diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-11-19 09:16:12 +0100 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-11-19 15:52:58 +0100 |
commit | dd5c20fd574cd668a3f071fd43cb19e271c308d2 (patch) | |
tree | 96600b60f4d91aa74865bd126619df774c715f7f /community | |
parent | 180c42b0d36742c55da41e08276a5618e2e44de0 (diff) | |
download | aports-dd5c20fd574cd668a3f071fd43cb19e271c308d2.tar.bz2 aports-dd5c20fd574cd668a3f071fd43cb19e271c308d2.tar.xz |
community/picom: upgrade to 7.5
Diffstat (limited to 'community')
-rw-r--r-- | community/picom/APKBUILD | 29 |
1 files changed, 16 insertions, 13 deletions
diff --git a/community/picom/APKBUILD b/community/picom/APKBUILD index ecaaaea7a0..2c7ec81a62 100644 --- a/community/picom/APKBUILD +++ b/community/picom/APKBUILD @@ -1,31 +1,34 @@ # Contributor: Francesco Colista <fcolista@alpinelinux.org> # Maintainer: Francesco Colista <fcolista@alpinelinux.org> -pkgname=compton -pkgver=7.4 +pkgname=picom +pkgver=7.5 pkgrel=0 -pkgdesc="X Compositor (a fork of xcompmgr-dana)" -url="https://github.com/yshui/compton" +pkgdesc="X Compositor (a fork of compton)" +url="https://github.com/yshui/picom" arch="all" license="MIT MPL-2.0" -makedepends="libx11-dev libxcomposite-dev libxinerama-dev libxdamage-dev \ - libconfig-dev pcre-dev libxrandr-dev dbus-dev libdrm-dev mesa-dev meson \ - libev-dev libxdg-basedir-dev pixman-dev xcb-util-renderutil-dev \ +makedepends="libx11-dev libxcomposite-dev libxinerama-dev libxdamage-dev + libconfig-dev pcre-dev libxrandr-dev dbus-dev libdrm-dev mesa-dev meson + libev-dev libxdg-basedir-dev pixman-dev xcb-util-renderutil-dev xcb-util-image-dev asciidoc uthash-dev" subpackages="$pkgname-doc" -source="compton-$pkgver.tar.gz::https://github.com/yshui/compton/archive/v$pkgver.tar.gz" +source="picom-$pkgver.tar.gz::https://github.com/yshui/picom/archive/v$pkgver.tar.gz" options="!check" # No tests defined in tests/ directory +replaces="compton" # Backwards compatibility +provides="compton=$pkgver-r$pkgrel" # Backwards compatibility + build() { - meson --prefix=/usr --buildtype=release -Dwith_docs=true build + meson --prefix=/usr --buildtype=release -Dbuild_docs=true build ninja -v -C build } package() { DESTDIR="$pkgdir" ninja -C build install - mkdir -p "$pkgdir/usr/share/doc/compton" - install -m644 README* "$pkgdir/usr/share/doc/compton/" - install -D -m644 "compton.sample.conf" "$pkgdir/etc/xdg/compton.conf.example" + mkdir -p "$pkgdir/usr/share/doc/picom" + install -m644 README* "$pkgdir/usr/share/doc/picom/" + install -D -m644 "picom.sample.conf" "$pkgdir/etc/xdg/picom.conf.example" } -sha512sums="03dbe0a54cfea2594133daca76e2f0f908383ee74cdcc8e94d17d5cd0943abf86c58452876b422da081f3c3226545ad3553561d37c138e903c0fe76865c2f43a compton-7.4.tar.gz" +sha512sums="6535e5eab1a243bbee62448bc48830b7ea3566f94b2c45d9ca76fd8b8056e1f00e55f0e4b58110364d2c4f56652cc005622d644c1db1db41d2811ecc19e6d44a picom-7.5.tar.gz" |