diff options
Diffstat (limited to 'PKGBUILD')
| -rw-r--r-- | PKGBUILD | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..033ba10 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,45 @@ +pkgname=st-custom-git +pkgver=0.8.4 +pkgrel=1 +pkgdesc="Suckless terminal" +url="https://git.vasthecat.ru/st.git" +arch=('i686' 'x86_64') +provides=('st') +conflicts=('st') +depends=(libxft) +source=( + 'arg.h' + 'config.h' + 'config.mk' + 'LICENSE' + 'Makefile' + 'st.1' + 'st.c' + 'st.desktop' + 'st.h' + 'st.info' + 'win.h' + 'x.c' +) +md5sums=( + '7a0155e070d14041f69ca4466aad18bf' + '4110b6459367bc5d4d3b381bec489db2' + 'b1bd448607e4f8ffa05d78986fc7c9e5' + '04c3ca13a702147c62db90f556c5b3ca' + '77af8e227f0414b2493fdb67456a7342' + 'bafec1da6c9f80fffd25dd5a85004b42' + '3bab876dff65da4d985f0fdb95017b7a' + '5138d530a714b4b162e2ce3f547877f5' + '4f18ec6173a6312651a54787395dade2' + '0cbfe790d927cce15ae8e658de03f8aa' + '600d948f6320be2ce99361b397bb4cfb' + 'ed59c415b5b033d23519f18b87842a7e' +) + +build() { + make +} + +package() { + make PREFIX=/usr DESTDIR="$pkgdir" install +} |