summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: a77c87fec6170a110c6ef8c498b72bae2fbdc1ea (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
# Maintainer: Hannes Schulze <projects@guidedlinux.org>
pkgname=archmaker
pkgver=0.0.1
pkgrel=1
pkgdesc="Quickly and easily create your own arch-based GNU/Linux-distribution"
arch=('x86_64')
url="https://archmaker.guidedlinux.org/"
license=('GPL3')
depends=('vte' 'gtk3' 'gtkmm3' 'archiso')
makedepends=('git')
provides=('archmaker')
conflicts=('archmaker')
source=("$pkgname-$pkgver"::'git+https://github.com/guidedlinux/archmaker#branch=master')
md5sums=('SKIP')

build() {
  cd "$pkgname-$pkgver"

  make
}

package() {
  cd "$pkgname-$pkgver"

  make DESTDIR="$pkgdir/" install
}