blob: 4cddc681200e2f61e8c61362cc73a996362aa84b (
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: Manel Castillo Giménez
pkgname="horizonwm"
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=()
_tag="v1.0.0"
_gitroot="https://github.com/ManelCG/HorizonWM.git"
_gitname="HorizonWM"
source=("git+$_gitroot#tag=$_tag"
)
sha256sums=("SKIP"
)
package(){
echo "Building HorizonWM..."
cd ${srcdir}/${_gitname}
git checkout $_tag
echo "Git checkout done"
echo "Starting configure"
make BDIR=${pkgdir} archlinux
}
|