blob: 9fb95b64ef4af1cb6db54b84df419190622f5cde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
pkgname=status
pkgver=8
pkgrel=1
pkgdesc='Simple status thing for using with i3'
url='https://github.com/sandsmark/status'
arch=('x86_64' 'i686')
license=('GPL2')
makedepends=('gcc')
depends=('libpulse' 'systemd')
source=("https://github.com/sandsmark/status/archive/${pkgver}.tar.gz")
build() {
cd status-${pkgver}
make
}
package() {
cd status-${pkgver}
install -D -m755 status -t "${pkgdir}/usr/bin"
}
md5sums=('15fd507fda1c80cfd2dcd7d6e0c6bb76')
|