Add -DCMAKE_INSTALL_SYSCONFDIR=/etc

This commit is contained in:
Drew DeVault 2015-12-27 11:08:23 -05:00
parent b96c926afa
commit d6e021e134
2 changed files with 14 additions and 12 deletions

View File

@ -1,8 +1,8 @@
# Generated by mksrcinfo v8
# Tue Dec 8 12:11:59 UTC 2015
# Sun Dec 27 16:08:19 UTC 2015
pkgbase = sway-git
pkgdesc = i3 compatible window manager for Wayland
pkgver = r896.155f5d2
pkgver = r1138.82aca85
pkgrel = 1
url = https://github.com/SirCmpwn/sway
arch = i686
@ -19,10 +19,11 @@ pkgbase = sway-git
depends = cairo
depends = wayland
depends = gdk-pixbuf2
optdepends = rxvt-unicode: default terminal emulator
optdepends = dmenu: default for launching applications
optdepends = imagemagick: for taking screenshots
optdepends = ffmpeg: for recording screencasts
optdepends = rxvt-unicode: Default terminal emulator.
optdepends = dmenu: Default for launching applications.
optdepends = imagemagick: For taking screenshots.
optdepends = ffmpeg: For recording screencasts.
optdepends = i3status: To display system information with a bar.
source = sway::git+https://github.com/SirCmpwn/sway.git
sha1sums = SKIP

View File

@ -1,7 +1,7 @@
# Maintainer: Drew DeVault <sir@cmpwn.com>
pkgname=sway-git
_pkgname=sway
pkgver=r896.155f5d2
pkgver=r1138.82aca85
pkgrel=1
license=('MIT')
pkgdesc='i3 compatible window manager for Wayland'
@ -13,10 +13,11 @@ depends=(
"wayland" "gdk-pixbuf2"
)
optdepends=(
"rxvt-unicode: default terminal emulator"
"dmenu: default for launching applications"
"imagemagick: for taking screenshots"
"ffmpeg: for recording screencasts"
"rxvt-unicode: Default terminal emulator."
"dmenu: Default for launching applications."
"imagemagick: For taking screenshots."
"ffmpeg: For recording screencasts."
"i3status: To display system information with a bar."
)
arch=("i686" "x86_64")
url='https://github.com/SirCmpwn/sway'
@ -31,7 +32,7 @@ pkgver() {
build() {
cd "${srcdir}/${_pkgname}"
cmake . -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr
cmake . -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_SYSCONFDIR=/etc -DCMAKE_INSTALL_PREFIX=/usr
make
}