blob: db9fabbb24038d3baa31febcc434236c32318ead (
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: Latif Sulistyo <latifsulistyo.me@gmail.com>
# shellcheck disable=2034,2154
# shellcheck shell=bash
_pkgname=layout-machi
pkgname=awesome-$_pkgname-git
pkgver=r202.e413822
pkgrel=1
pkgdesc='AwesomeWM manual layout with an interactive editor'
arch=('any')
url='https://github.com/xinhaoyuan/layout-machi'
license=('Apache2.0')
depends=('awesome')
makedepends=('git')
source=('git+https://github.com/xinhaoyuan/layout-machi.git')
md5sums=('SKIP')
pkgver() {
cd "$_pkgname" || exit 1
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
package() {
cd "$_pkgname" || exit 1
install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
find . \
-type f \
\( -iname '*.lua' -or -iname '*.patch' -or -iname 'icon.png' \) \
-exec install -Dm644 {} "$pkgdir/usr/share/awesome/lib/$_pkgname/{}" \;
}
|