This commit is contained in:
Jack L. Frost 2015-06-23 00:46:16 +03:00
commit 6571faeb2f
2 changed files with 39 additions and 0 deletions

15
.SRCINFO Normal file
View File

@ -0,0 +1,15 @@
pkgbase = lemonbar
pkgdesc = A featherweight, lemon-scented, bar based on xcb.
pkgver = 1.1
pkgrel = 2
url = https://github.com/LemonBoy/bar
arch = i686
arch = x86_64
license = MIT
makedepends = git
depends = libxcb
source = https://github.com/LemonBoy/bar/archive/v1.1.tar.gz
sha1sums = 33e250c1558ce8a1f4a1d85851a548d00716d6b1
pkgname = lemonbar

24
PKGBUILD Normal file
View File

@ -0,0 +1,24 @@
# Maintainer: Jack L. Frost <fbt@fleshless.org>
pkgname=lemonbar
pkgver=1.1
pkgrel=2
pkgdesc='A featherweight, lemon-scented, bar based on xcb.'
arch=( 'i686' 'x86_64' )
url='https://github.com/LemonBoy/bar'
license=( 'MIT' )
depends=( 'libxcb' )
makedepends=( 'git' )
source=( "https://github.com/LemonBoy/bar/archive/v${pkgver}.tar.gz" )
build() {
cd "bar-${pkgver}"
make
}
package() {
cd "bar-${pkgver}"
make PREFIX="/usr" DESTDIR="$pkgdir" install
install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
sha1sums=('33e250c1558ce8a1f4a1d85851a548d00716d6b1')