summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 570a5fba946e3c99c786ce1fecc4ed3554b77609 (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: Cihan Alkan <cihanalk@gmail.com>

pkgname=ukui-desktop
pkgver=1.1.6
pkgrel=1
pkgdesc="UKUI Masaüstü"
url="https://ukui-desktop.org"
arch=('x86_64')
license=('GPL')
depends=('gtk3' 'ukwm' 'startup-notification')
makedepends=('gobject-introspection' 'intltool')
optdepends=()
groups=('ukui')
source=("git+https://github.com/ukui/ukui-desktop.git")
sha256sums=('SKIP')

prepare() {
 cd ${pkgname}
    NOCONFIGURE=1 ./autogen.sh
}

build() {
    cd ${pkgname}
    ./configure \
        --prefix=/usr \
        --disable-schemas-compile

    make
}

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