52056d73ee
Also expand README to explain how to generate a custom config.h and some hints on using this port as a reference for a private and customized tabbed port.
21 lines
461 B
Plaintext
21 lines
461 B
Plaintext
# Description: Simple generic tabbed fronted to xembed aware applications
|
|
# URL: https://tools.suckless.org/tabbed/
|
|
# Maintainer: John Vogel, jvogel4 at stny dot rr dot com
|
|
# Depends on: xorg-libx11
|
|
|
|
name=tabbed
|
|
version=0.6
|
|
release=2
|
|
source=(http://dl.suckless.org/tools/$name-$version.tar.gz)
|
|
|
|
build () {
|
|
cd $name-$version
|
|
|
|
if [ -f $PKGMK_ROOT/config.h ]; then
|
|
cp $PKGMK_ROOT/config.h .
|
|
fi
|
|
|
|
make CC=gcc
|
|
make DESTDIR=$PKG PREFIX=/usr install
|
|
}
|