summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 09fd74f309dde4af01cea9308008319ed0896b68 (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
# Contributor: Lukas Fleischer <lfleischer@archlinux.org>
# Contributor: totoloco <totoloco at gmx>
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>

pkgname=tabbed-vain
pkgver=0.6r37
pkgrel=1
pkgdesc="Suckless tabbed modified to suit the author's needs"
arch=('i686' 'x86_64')
url='https://github.com/vain/tabbed-vain.git'
license=('custom:MIT/X')
depends=('libxft')
makedepends=('git')
conflicts=('tabbed')
provides=('tabbed')
source=("git+https://github.com/vain/tabbed-vain.git#commit=b98fd6d9015323c57904be9c3529038e1e91f6ea"
        'config.h')
md5sums=('SKIP'
         '061c739dc784bf74e92bd5b7a1100623')

build() {
  cd "${pkgname}"
  cp "${srcdir}/config.h" config.h
  make
}

package() {
  cd "${pkgname}"

  make PREFIX=/usr DESTDIR="${pkgdir}" install
  install -Dm0644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}