diff options
| author | kj-sh604 | 2024-07-01 06:49:55 -0400 |
|---|---|---|
| committer | kj-sh604 | 2024-07-01 06:49:55 -0400 |
| commit | 5d6017490b3c476a8dcb4bda848bf4775e904dda (patch) | |
| tree | 4ca3ed81f076764088042232397a6d337a184271 | |
| parent | c6f07c65a026d16a48eb4b515584d2457e7ecaee (diff) | |
kj-gitbot: xfce4-volumed-pulse/
| -rw-r--r-- | xfce4-volumed-pulse/.SRCINFO | 21 | ||||
| -rw-r--r-- | xfce4-volumed-pulse/.gitignore | 3 | ||||
| -rw-r--r-- | xfce4-volumed-pulse/PKGBUILD | 31 |
3 files changed, 55 insertions, 0 deletions
diff --git a/xfce4-volumed-pulse/.SRCINFO b/xfce4-volumed-pulse/.SRCINFO new file mode 100644 index 0000000..059e527 --- /dev/null +++ b/xfce4-volumed-pulse/.SRCINFO @@ -0,0 +1,21 @@ +pkgbase = xfce4-volumed-pulse + pkgdesc = A volume keys control daemon for Xfce using pulseaudio + pkgver = 0.2.4 + pkgrel = 1 + url = https://gitlab.xfce.org/apps/xfce4-volumed-pulse + arch = i686 + arch = x86_64 + license = GPL3 + makedepends = git + makedepends = xfce4-dev-tools + depends = libnotify + depends = pulseaudio + depends = libkeybinder3 + depends = xfconf + optdepends = xfce4-notifyd: for OSD notifications + conflicts = xfce4-volumed + replaces = xfce4-volumed + source = https://aedrielkylejavier.me/assets/xfce4-volumed-pulse/0.2/xfce4-volumed-pulse-0.2.4.tar.bz2 + sha256sums = a019e3f626b31c0aaa0b807962606645cc0caf7930882b034a5a3a1719858362 + +pkgname = xfce4-volumed-pulse diff --git a/xfce4-volumed-pulse/.gitignore b/xfce4-volumed-pulse/.gitignore new file mode 100644 index 0000000..8d78c83 --- /dev/null +++ b/xfce4-volumed-pulse/.gitignore @@ -0,0 +1,3 @@ +pkg/ +src/ +*.tar* diff --git a/xfce4-volumed-pulse/PKGBUILD b/xfce4-volumed-pulse/PKGBUILD new file mode 100644 index 0000000..85d5684 --- /dev/null +++ b/xfce4-volumed-pulse/PKGBUILD @@ -0,0 +1,31 @@ +# Maintainer: Bernhard Landauer <oberon@manjaro.org> + +pkgname=xfce4-volumed-pulse +_vmaj=0.2 +_vmin=4 +pkgver=$_vmaj.$_vmin +pkgrel=1 +pkgdesc='A volume keys control daemon for Xfce using pulseaudio' +arch=('i686' 'x86_64') +license=('GPL3') +conflicts=('xfce4-volumed') +replaces=('xfce4-volumed') +url="https://gitlab.xfce.org/apps/$pkgname" +depends=('libnotify' 'pulseaudio' 'libkeybinder3' 'xfconf') +makedepends=('git' 'xfce4-dev-tools') +optdepends=('xfce4-notifyd: for OSD notifications') +sha256sums=('a019e3f626b31c0aaa0b807962606645cc0caf7930882b034a5a3a1719858362') +source=("https://aedrielkylejavier.me/assets/$pkgname/$_vmaj/$pkgname-$pkgver.tar.bz2") + +build() { + cd $pkgname-$pkgver + ./configure --prefix=/usr --sysconfdir=/etc \ + --libexecdir=/usr/lib \ + --localstatedir=/var + make +} + +package() { + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install +} |
