summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: f2fda41068413a38cca1f9b976df54af4b671d26 (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
# Maintainer: sunflsks <sudhip@nashi.us>

pkgname=libgeneral
pkgver=54
pkgrel=1
pkgdesc="General stuff for tihmstar's projects - git version"
arch=('x86_64')
url="https://github.com/tihmstar/$pkgname"
license=('LGPL')
provides=('libgeneral')
conflicts=('libgeneral')
source=("https://github.com/tihmstar/libgeneral/archive/$pkgver.tar.gz")
md5sums=('318582e75dc02c9074aa8d59c265986a')

build() {
  cd "$pkgname-$pkgver"

  ./autogen.sh --prefix=/usr
  make
}

package() {
  cd "$pkgname-$pkgver"

  make DESTDIR="$pkgdir/" install
}