diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-12-24 08:18:41 -0800 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2017-12-24 08:18:41 -0800 |
commit | 4d744aeb230f36d990c102a89314f95ff802ca75 (patch) | |
tree | ae5a34eec5f215a4f5ce04648d4a2bccf50cbc0d /dist | |
parent | a081b3bf7b99c0e044da26cd00fc74e367c66e63 (diff) |
Remove PKGBUILD
Diffstat (limited to 'dist')
-rw-r--r-- | dist/archlinux/PKGBUILD | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/dist/archlinux/PKGBUILD b/dist/archlinux/PKGBUILD deleted file mode 100644 index 68f174f9..00000000 --- a/dist/archlinux/PKGBUILD +++ /dev/null @@ -1,48 +0,0 @@ -pkgname=wlroots -pkgver=r600.d89272d -pkgrel=1 -license=('MIT') -pkgdesc='Wayland compositor library' -makedepends=("meson") -depends=( - "wayland" - "wayland-protocols" - "mesa" - "libdrm" - "libinput" - "libxkbcommon" - "libsystemd" - "pixman" - "libxcb" -) -arch=("x86_64") -url="https://github.com/swaywm/wlroots" -source=("${pkgname}::git+https://github.com/swaywm/wlroots.git") -sha1sums=('SKIP') -provides=('wlroots') -conflicts=('wlroots') - -pkgver() { - cd "${srcdir}/${pkgname}" - printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" -} - -build() { - cd "${srcdir}/${pkgname}" - - meson build \ - --prefix=/usr \ - -Dbuildtype=debugoptimized \ - -Db_lto=True \ - -Denable-systemd=True \ - -Denable-elogind=False \ - -Denable-libcap=False - - ninja -C build -} - -package() { - cd "${srcdir}/${pkgname}" - - DESTDIR="${pkgdir}" ninja -C build install -} |