blob: 70796376207f377cabd7fe8335c299809e9918dd (
plain)
1 # Description: Simple generic tabbed fronted to xembed aware applications
2 # URL: https://tools.suckless.org/tabbed/
3 # Maintainer: John Vogel, jvogel4 at stny dot rr dot com
4 # Depends on: xorg-libx11
5
6 name=tabbed
7 version=0.6
8 release=2
9 source=(http://dl.suckless.org/tools/$name-$version.tar.gz)
10
11 build () {
12 cd $name-$version
13
14 if [ -f $PKGMK_ROOT/config.h ]; then
15 cp $PKGMK_ROOT/config.h .
16 fi
17
18 make CC=gcc
19 make DESTDIR=$PKG PREFIX=/usr install
20 }
|