blob: 17d88d2d930f0991ce816b9656d0d8b950324de0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Maintainer: DreamMaoMao <maoopzopaasnmakslpo@gmail.com>
pkgname=mmsg-git
pkgver=r22.7dc0500
pkgrel=1
pkgdesc="ipc client for maomaowm"
arch=('x86_64')
url="https://github.com/DreamMaoMao/mmsg"
license=('MIT')
depends=(
glibc
'wayland>=1.23.1'
)
makedepends=('git' 'make' 'wayland-protocols')
provides=("${pkgname}")
conflicts=("${pkgname}")
source=("$pkgname::git+https://github.com/DreamMaoMao/mmsg.git")
md5sums=('SKIP')
pkgver() {
cd "$pkgname"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
cd "${pkgname}"
make
}
package() {
cd "${pkgname}"
make PREFIX="$pkgdir/usr/" install
}
|