summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 165837b4c670ab430710203e7a14dc20b5f17a22 (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
# $Id: pkgbuild-mode.el,v 1.23 2007/10/20 16:02:14 juergen Exp $
# Maintainer:  Alad Wenter <https://wiki.archlinux.org/index.php/Special:EmailUser/Alad>

pkgname=cottage-git
pkgver=94f2379
pkgrel=5

pkgdesc="Use howm commands, operators and set configuration values through a UNIX socket."
url="https://github.com/HarveyHunt/cottage"
license=('GPL')
arch=('i686' 'x86_64')

options=('debug')
source=("$pkgname::git+https://github.com/HarveyHunt/cottage#branch=master")
sha256sums=('SKIP')

pkgver() {
  cd "$pkgname"
  git rev-parse --short HEAD
}

build() {
  cd "$pkgname"
  make debug
}

package() {
  cd "$pkgname"
  install -Dm755 "bin/debug/cottage" "$pkgdir/usr/bin/cottage"
}

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