summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 15325f2f1a7ea0e033aabf413a92f07c5075ae43 (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
# Maintainer: Karol Babioch <karol@babioch.de

pkgname=xwmfs
pkgver=0.83
pkgrel=1
pkgdesc="X11 Window-Manager file system based on FUSE"
arch=('x86_64')
url="https://github.com/gerstner-hub/xwmfs"
license=('GPL2')
depends=('fuse' 'libx11')
source=("git+https://github.com/gerstner-hub/xwmfs.git#tag=v$pkgver")
sha256sums=('SKIP')

build() {
    cd "${srcdir}/${pkgname}"
    ./bootstrap
    ./configure --prefix=/usr
}

package() {
    cd "${srcdir}/${pkgname}"
    make DESTDIR="${pkgdir}" install
}