Created
December 31, 2012 03:40
-
-
Save anonymous/4417214 to your computer and use it in GitHub Desktop.
A working PKGBUILD for the 'ST' terminal from Suckless. AUR ArchLinux.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pkgname=st | |
pkgver=0.3 | |
pkgrel=0 | |
pkgdesc='A simple virtual terminal emulator for X.' | |
arch=('i686' 'x86_64') | |
license=('MIT') | |
depends=('libx11') | |
makedepends=('ncurses') | |
url="http://st.suckless.org" | |
source=(http://dl.suckless.org/st/$pkgname-$pkgver.tar.gz) | |
md5sums=('b81392157bd9ff7a89da8a90588e420e') | |
build() { | |
cd $srcdir/$pkgname-$pkgver | |
make X11INC=/usr/include/X11 X11LIB=/usr/lib/X11 PREFIX=/usr DESTDIR="$pkgdir" TERMINFO="$pkgdir/usr/share/terminfo" install | |
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" | |
install -Dm644 README "$pkgdir/usr/share/doc/$pkgname/README" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment