blob: dbea84d3cc14bf394ee08e99eb9497adb79bc4ae (
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
|
# Maintainer: Manel Castillo Giménez
pkgname="horizonwm-git"
pkgver="1.0.0"
pkgrel="1"
pkgdesc="Official WM of Horizon Linux. Based on DWM."
arch=("x86_64")
url="https://github.com/ManelCG/HorizonWM"
depends=("make" "pkgconf" "grep" "awk")
conflicts=("horizonwm-git")
optdepends=()
_gitroot="https://github.com/ManelCG/HorizonWM.git"
_gitname="HorizonWM"
source=("git+$_gitroot"
)
sha256sums=("SKIP"
)
package(){
echo "Building HorizonWM..."
cd ${srcdir}/${_gitname}
git checkout develop
echo "Git checkout done"
echo "Starting configure"
make BDIR=${pkgdir} archlinux
}
|