diff options
| author | SoominIm <111330163+SoominIm@users.noreply.github.com> | 2024-03-02 14:45:42 -0600 |
|---|---|---|
| committer | SoominIm <111330163+SoominIm@users.noreply.github.com> | 2024-03-02 14:45:42 -0600 |
| commit | 5017790af4d8d7d9d7c9b41044a34ed015bc570e (patch) | |
| tree | 0c8adc7f95a396ac25c0e57b528f8a3f38b9ec16 /dwm/PKGBUILD | |
Initial commit
Diffstat (limited to 'dwm/PKGBUILD')
| -rw-r--r-- | dwm/PKGBUILD | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/dwm/PKGBUILD b/dwm/PKGBUILD new file mode 100644 index 0000000..1903c72 --- /dev/null +++ b/dwm/PKGBUILD @@ -0,0 +1,44 @@ +_pkgname=dwm +pkgname=$_pkgname-larbs-git +pkgver=6.2.r1888.0ac09e0 +pkgrel=1 +pkgdesc="Luke's build of dwm" +url=https://github.com/LukeSmithxyz/dwm +arch=(i686 x86_64) +license=(MIT) +makedepends=(git) +depends=(freetype2 libx11 libxft) +optdepends=( + 'dmenu: program launcher' + 'st: terminal emulator') +provides=($_pkgname) +conflicts=($_pkgname) +source=(git+https://github.com/LukeSmithxyz/dwm) +sha256sums=('SKIP') + +pkgver() { + cd "$_pkgname" + echo "$(awk '/^VERSION =/ {print $3}' config.mk)".r"$(git rev-list --count HEAD)"."$(git rev-parse --short HEAD)" +} + +prepare() { + cd "$_pkgname" + echo "CPPFLAGS+=${CPPFLAGS}" >> config.mk + echo "CFLAGS+=${CFLAGS}" >> config.mk + echo "LDFLAGS+=${LDFLAGS}" >> config.mk + # to use a custom config.h, place it in the package directory + if [[ -f ${SRCDEST}/config.h ]]; then + cp "${SRCDEST}/config.h" . + fi +} + +build() { + cd "$_pkgname" + make X11INC=/usr/include/X11 X11LIB=/usr/lib/X11 +} + +package() { + cd "$_pkgname" + make PREFIX=/usr DESTDIR="$pkgdir" install + install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +} |
