summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: ef3e65774acd397d578baa6eed86fb2d5f9b55de (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
# Contributor: Joshua Stiefer <facedelajunk@gmail.com>
# Maintainer: aksr <aksr at t-com dot me>
pkgname=herrie-git
pkgver=20170505
pkgrel=1
pkgdesc="A minimal music player."
arch=('i686' 'x86_64')
url="http://www.herrie.info"
license=('GPL')
depends=('libmodplug' 'libsndfile' 'libid3tag' 'libxspf' 'libmad' 'curl' 'dbus-glib')
makedepends=('git')
source=("$pkgname::git+https://github.com/EdSchouten/herrie")
provides=("${pkgname%-*}")
conflicts=("${pkgname%-*}")
md5sums=('SKIP')

pkgver() {
  cd "$srcdir/$pkgname"
  git log -1 --format="%cd" --date=short | sed 's|-||g'
}

prepare() {
  cd "$srcdir/$pkgname/${pkgname%-*}"
  # Fix from 'herrie' package
  sed -i -e s/spiff/xspf/g -e s/SPIFF/XSPF/g -e s/Spiff/Xspf/g {configure,src/*.c}
  sed -i s!modplug.h!libmodplug/modplug.h! src/audio_format_modplug.c
}

build() {
  cd "$srcdir/$pkgname/${pkgname%-*}"
  ./configure
  make
}

package() {
  cd "$srcdir/$pkgname/${pkgname%-*}"
  make DESTDIR="$pkgdir" install
}