mirror of
https://github.com/alrayyes/dmenu
synced 2023-11-14 15:56:27 +00:00
initial import
This commit is contained in:
commit
5083f7ac8a
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
*.xz
|
||||||
|
*.gz
|
||||||
|
pkg/
|
||||||
|
src/
|
41
PKGBUILD
Normal file
41
PKGBUILD
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
|
||||||
|
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
||||||
|
# Contributor: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
|
||||||
|
# Contributor: Thorsten Töpper <atsutane-tu@freethoughts.de>
|
||||||
|
# Contributor: Thayer Williams <thayer@archlinux.org>
|
||||||
|
# Contributor: Jeff 'codemac' Mickey <jeff@archlinux.org>
|
||||||
|
|
||||||
|
pkgname=dmenu
|
||||||
|
pkgver=4.9
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc='Generic menu for X'
|
||||||
|
url='https://tools.suckless.org/dmenu/'
|
||||||
|
arch=('x86_64')
|
||||||
|
license=('MIT')
|
||||||
|
depends=('sh' 'libxinerama' 'libxft' 'freetype2')
|
||||||
|
source=(https://dl.suckless.org/tools/dmenu-${pkgver}.tar.gz)
|
||||||
|
sha512sums=('c2779209fe012de8ca1cdd72923da6d594f4a8368c85c3c0e0afd4ae489a95fe0e6f05a947d115b6b389aa7170ab14c2c645a2031353b0a08f38327ab461fe65')
|
||||||
|
|
||||||
|
prepare() {
|
||||||
|
cd ${pkgname}-${pkgver}
|
||||||
|
echo "CPPFLAGS+=${CPPFLAGS}" >> config.mk
|
||||||
|
echo "CFLAGS+=${CFLAGS}" >> config.mk
|
||||||
|
echo "LDFLAGS+=${LDFLAGS}" >> config.mk
|
||||||
|
}
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd ${pkgname}-${pkgver}
|
||||||
|
make \
|
||||||
|
X11INC=/usr/include/X11 \
|
||||||
|
X11LIB=/usr/lib/X11 \
|
||||||
|
FREETYPEINC=/usr/include/freetype2
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd ${pkgname}-${pkgver}
|
||||||
|
make PREFIX=/usr DESTDIR="${pkgdir}" install
|
||||||
|
install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
|
||||||
|
}
|
||||||
|
|
||||||
|
# vim: ts=2 sw=2 et:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user