cppAlsaVolume PKGBUILD (first version)
This commit is contained in:
commit
5355d5d0b7
2 changed files with 53 additions and 0 deletions
22
.SRCINFO
Normal file
22
.SRCINFO
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
pkgbase = cpp-alsa-volume
|
||||||
|
pkgdesc = Tray Alsa Volume Changer written using gtkmm
|
||||||
|
pkgver = 0.2.6
|
||||||
|
pkgrel = 1
|
||||||
|
url = https://github.com/Vitozz/cppAlsaVolume
|
||||||
|
arch = x86_64
|
||||||
|
arch = i686
|
||||||
|
license = GPL2
|
||||||
|
makedepends = gtkmm
|
||||||
|
makedepends = glibmm
|
||||||
|
makedepends = alsa-lib
|
||||||
|
makedepends = cmake
|
||||||
|
depends = gtkmm
|
||||||
|
depends = glibmm
|
||||||
|
depends = alsa-lib
|
||||||
|
source = https://github.com/Vitozz/cppAlsaVolume/archive/v0.2.6.tar.gz
|
||||||
|
source = https://github.com/Vitozz/cppAlsaVolume/commit/5ad2b3e23fecfdfdd9e87b9cd70b5c02fb31da39.patch
|
||||||
|
md5sums = 51c9bec739b1a0174881dc6890096e58
|
||||||
|
md5sums = 1066cf5d687eb82a1e3c76bbc8abe02b
|
||||||
|
|
||||||
|
pkgname = cpp-alsa-volume
|
||||||
|
|
31
PKGBUILD
Normal file
31
PKGBUILD
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
# Maintainer: Cedric Girard <girard.cedric@gmail.com>
|
||||||
|
pkgname=cpp-alsa-volume
|
||||||
|
_upstreamname=cppAlsaVolume
|
||||||
|
pkgver=0.2.6
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="Tray Alsa Volume Changer written using gtkmm"
|
||||||
|
arch=('x86_64' 'i686')
|
||||||
|
url="https://github.com/Vitozz/cppAlsaVolume"
|
||||||
|
license=('GPL2')
|
||||||
|
makedepends=('gtkmm' 'glibmm' 'alsa-lib' 'cmake')
|
||||||
|
depends=('gtkmm' 'glibmm' 'alsa-lib')
|
||||||
|
source=("https://github.com/Vitozz/cppAlsaVolume/archive/v${pkgver}.tar.gz"
|
||||||
|
"https://github.com/Vitozz/cppAlsaVolume/commit/5ad2b3e23fecfdfdd9e87b9cd70b5c02fb31da39.patch")
|
||||||
|
|
||||||
|
prepare() {
|
||||||
|
cd "$_upstreamname-$pkgver"
|
||||||
|
patch -p1 -i "$srcdir/5ad2b3e23fecfdfdd9e87b9cd70b5c02fb31da39.patch"
|
||||||
|
}
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd "$_upstreamname-$pkgver"
|
||||||
|
cmake -DUSE_GTK3=OFF -DCMAKE_INSTALL_PREFIX=/usr
|
||||||
|
make
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd "$_upstreamname-$pkgver"
|
||||||
|
make DESTDIR="$pkgdir/" install
|
||||||
|
}
|
||||||
|
md5sums=('51c9bec739b1a0174881dc6890096e58'
|
||||||
|
'1066cf5d687eb82a1e3c76bbc8abe02b')
|
Loading…
Reference in a new issue