summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: ee83715d72fad89ebc57b28a6cf04104bbcd3e6c (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
# This is an example PKGBUILD file. Use this as a start to creating your own,
# and remove these comments. For more information, see 'man PKGBUILD'.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.

# Maintainer: Derek Hemingson <b.derehemi@gmail.com>
# Contributor: Derek Hemingson <b.derehemi@gmail.com>

pkgname=caser
pkgver=1.0.3
pkgrel=1
epoch=
pkgdesc="Converts input strings to a standard naming convention."
arch=('x86_64')
url="https://github.com/Shadetheartist/caser"
license=('GPL')
groups=()
depends=('glibc')
makedepends=()
checkdepends=('check')
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("$pkgname-$pkgver.tar.gz::https://github.com/Shadetheartist/caser/releases/download/${pkgver}/caser-${pkgver}.tar.gz")
noextract=()
sha256sums=('a839ddd7727bfd1f6c119ace091f31458372d2606a5c5e8590624beb3cc594b3')
validpgpkeys=()

build() {
	cd "caser-$pkgver"
	./configure --prefix=/usr
	make
}

check() {
	cd "caser-$pkgver"
	./configure --prefix=/usr
	make check
}

package() {
	cd "caser-$pkgver"
	make DESTDIR="$pkgdir/" install
}