old-st

[ARCHIVED] my build of st
git clone git://git.ckyln.com/~cem/old-st.git
Log | Files | Refs | README | LICENSE

commit 5a9d17cf06222ec64afffbcbe9936a1803fa6bc0
parent 1e669288cfc19c30012b38e56b048fdc800d95c3
Author: Cem Keylan <cem@ckyln.com>
Date:   Tue, 18 Jun 2019 10:17:24 +0300

Added PKGBUILD

Diffstat:
APKGBUILD | 28++++++++++++++++++++++++++++
1 file changed, 28 insertions(+), 0 deletions(-)

diff --git a/PKGBUILD b/PKGBUILD @@ -0,0 +1,28 @@ +# Maintainer: Cem Keylan + +pkgname=st-ckyln +_pkgname=st +pkgver=20190618 +pkgdesc="Simple Terminal from suckless.org (Fork)" +url="https://git.ckyln.com/cemkeylan/st.git" +arch=('i686' 'x86_64') +license=('MIT') +depends=('libxft') +makedepends=('git') +source=('https://git.ckyln.com/cemkeylan/st.git') +md5sums=('SKIP') + +provides=('st') +conflicts=('st') + +build() { + cd $srcdir/${_pkgname} + make +} + +package() { + cd ${_pkgnmae} + make PREFIX=/usr DESTDIR="${pkgdir}" install + install -Dm644 LICENSE "${pkgdir}/usr/share/doc/${pkgname}/LICENSE" + install -Dm644 "${pkgdir}/usr/share/doc/${pkgname}/README.md" +}