New packages: cbatticon-gtk3 & cbatticon-gtk2
This commit is contained in:
parent
09aa526b30
commit
9434eea736
|
@ -0,0 +1 @@
|
|||
cbatticon-gtk3
|
|
@ -0,0 +1,39 @@
|
|||
# Template file for 'cbatticon-gtk3'
|
||||
pkgname=cbatticon-gtk3
|
||||
version=1.6.2
|
||||
revision=1
|
||||
build_style=gnu-makefile
|
||||
hostmakedepends="pkg-config"
|
||||
makedepends="gtk+-devel gtk+3-devel libnotify-devel"
|
||||
maintainer="cr6git <quark6@protonmail.com>"
|
||||
short_desc="Lightweight and fast battery icon that sits in your systray - GTK3"
|
||||
homepage="https://github.com/valr/cbatticon"
|
||||
license="GPL-2"
|
||||
distfiles="https://github.com/valr/cbatticon/archive/${version}.tar.gz"
|
||||
checksum=fd78c2a38441f78116b68dbef67c8ab67d323d781206a76a3fe5cc09f4bce1ee
|
||||
wrksrc="cbatticon-${version}"
|
||||
provides="cbatticon-${version}_${revision}"
|
||||
replaces="cbatticon-gtk2>=0"
|
||||
|
||||
do_build() {
|
||||
# Cannot build GTK2/3 versions in the same folder!
|
||||
cp -a ${wrksrc} ${wrksrc}-gtk2
|
||||
|
||||
# GTK3
|
||||
make_build_args="WITH_NOTIFY=1 WITH_GTK3=1"
|
||||
make ${makejobs} ${make_build_args} ${make_build_target}
|
||||
|
||||
# GTK2
|
||||
cd ${wrksrc}-gtk2
|
||||
make_build_args="WITH_NOTIFY=1 WITH_GTK3=0"
|
||||
make ${makejobs} ${make_build_args} ${make_build_target}
|
||||
}
|
||||
|
||||
cbatticon-gtk2_package() {
|
||||
short_desc="${short_desc/GTK3/GTK2}"
|
||||
provides="cbatticon-${version}_${revision}"
|
||||
replaces="cbatticon-gtk3>=0"
|
||||
pkg_install() {
|
||||
make STRIP=true PREFIX=/usr DESTDIR=${PKGDESTDIR} -C ${wrksrc}-gtk2 install
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue