Initial commit
This commit is contained in:
commit
fe5a498965
16
.SRCINFO
Normal file
16
.SRCINFO
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
pkgbase = sway-git
|
||||||
|
pkgdesc = i3 compatible window manager for Wayland
|
||||||
|
pkgver = 1.0.0
|
||||||
|
pkgrel = 1
|
||||||
|
url = https://github.com/SirCmpwn/sway
|
||||||
|
arch = i386
|
||||||
|
arch = x86_64
|
||||||
|
license = MIT
|
||||||
|
makedepends = cmake
|
||||||
|
depends = wlc
|
||||||
|
optdepends = xorg-server-xwayland: running xorg windows under sway
|
||||||
|
source = sway::git+https://github.com/SirCmpwn/sway.git
|
||||||
|
sha1sums = SKIP
|
||||||
|
|
||||||
|
pkgname = sway-git
|
||||||
|
|
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
*.tar.gz
|
||||||
|
*.tar.xz
|
||||||
|
src/
|
||||||
|
pkg/
|
||||||
|
sway/
|
27
PKGBUILD
Normal file
27
PKGBUILD
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
# Maintainer: Drew DeVault <sir@cmpwn.com>
|
||||||
|
pkgname=sway-git
|
||||||
|
_pkgname=sway
|
||||||
|
pkgver=1.0.0
|
||||||
|
pkgrel=1
|
||||||
|
license=('MIT')
|
||||||
|
pkgdesc='i3 compatible window manager for Wayland'
|
||||||
|
makedepends=("cmake")
|
||||||
|
depends=("wlc")
|
||||||
|
optdepends=("xorg-server-xwayland: running xorg windows under sway")
|
||||||
|
arch=("i386" "x86_64")
|
||||||
|
url='https://github.com/SirCmpwn/sway'
|
||||||
|
source=("${pkgname%-*}::git+https://github.com/SirCmpwn/sway.git")
|
||||||
|
sha1sums=('SKIP')
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd "${srcdir}/${_pkgname}"
|
||||||
|
|
||||||
|
cmake . -DCMAKE_INSTALL_PREFIX=/usr
|
||||||
|
make
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd "${srcdir}/${_pkgname}"
|
||||||
|
|
||||||
|
DESTDIR="$pkgdir/" make install
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user