summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4f9ff8b2aa012f9e5e4dc6f59a80f283e4db7c9c (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
# Maintainer: Daniel T. Borelli < daltomi at aol >

pkgbase=moc_notify-git
pkgname=$pkgbase
pkgver=1.11
pkgrel=1
pkgdesc="Notifier for 'Music On Console' using libnotify."
arch=('i686' 'x86_64')
url='https://github.com/daltomi/moc_notify'
license=('GPL3')
depends=('libnotify')
optdepends=('moc: Music on Console')
makedepends=('git' 'cmake' 'gcc' 'pkg-config')
_gitroot=$url.git
_gitname=moc_notify

install=moc_notify-git.install
source=('moc_notify-git.install')
sha1sums=('ae6f9be60997863f215d13c0cb0bb8da9bbdd5eb')

prepare() {
  cd "$srcdir"
  msg "Connecting to GIT server...."
  git clone "$_gitroot" --branch "v.$pkgver"
}

build() {
  src_git=$srcdir/$_gitname/
  msg "Starting build..."
  cd $src_git/
  cmake -DCMAKE_BUILD_TYPE="release" . && make 
}

package() {
  install -Dm755 "$srcdir/$_gitname/moc_notify" "$pkgdir/usr/bin/moc_notify"
  install -m755 -d "$pkgdir/usr/share/moc_notify"
  install -Dm755  "$srcdir/$_gitname/scripts/onsongchange.sh" "$pkgdir/usr/share/moc_notify/"
}