summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: ba66989f82ecc63005beee17f299c3f8b0fbc2ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Maintainer: Your Name <you@example.com>
pkgname=lsl
pkgver=1.0.0
pkgrel=1
_commit='a5f4f4ee5989ce188c44094c526c5b454ae01f7a'
pkgdesc='linux subsystem for linux'
arch=('any')
url='https://gitlab.com/sulincix/debian-subsystem/'
license=('MIT')
depends=('glibc')
makedepends=('git' 'pam' 'gcc' 'debootstrap')
source=("${pkgname}-${pkgver}::https://gitlab.com/sulincix/debian-subsystem/-/archive/a5f4f4ee5989ce188c44094c526c5b454ae01f7a/debian-subsystem-a5f4f4ee5989ce188c44094c526c5b454ae01f7a.zip")
md5sums=('SKIP')

build() {
    make -C "${pkgname}-${pkgver}" all
}

package() {
    make -C "${pkgname}-${pkgver}/" DESTDIR="${pkgdir}" install
}