summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: deb5360c8c9616d279b8bc70b00012956b634f40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Maintainer: Bogdan Sinitsyn <f1u77y@yandex.ru>
pkgname=headphones-plug-detector-git
pkgver=r15.e4c83d0
pkgrel=1
pkgdesc="Pauses media when headphones get plugged out and plays it when they get plugged in"
arch=('i686' 'x86_64')
url="https://github.com/f1u77y/headphones-plug-detector"
license=('MIT')
depends=(
  glib2
  jacklistener-git
)
makedepends=(
  git
  cmake
)
provides=(${pkgname%-git})
conflicts=(
  ${pkgname%-git}
)
source=("${pkgname%-git}::git+https://github.com/f1u77y/headphones-plug-detector.git")
md5sums=('SKIP')

pkgver() {
  cd "$srcdir/${pkgname%-git}"

  printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

prepare() {
  cd "$srcdir/${pkgname%-git}"

  mkdir -p build
}

build() {
  cd "$srcdir/${pkgname%-git}"

  cd build
  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DENABLE_SYSTEMD=On ..
  make
}

package() {
  cd "$srcdir/${pkgname%-git}"

  cd build
  make DESTDIR="$pkgdir/" install
}

# vim:set ts=2 sw=2 et: