diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/cmake.xibuild | 2 | ||||
-rw-r--r-- | templates/configure.xibuild | 2 | ||||
-rw-r--r-- | templates/make.xibuild | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/templates/cmake.xibuild b/templates/cmake.xibuild index 1591035..15c7133 100644 --- a/templates/cmake.xibuild +++ b/templates/cmake.xibuild @@ -1,5 +1,5 @@ build () { - cmake -B build -G Ninja \ + cmake -B build \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_INSTALL_LIBDIR=/usr/lib \ -DBUILD_SHARED_LIBS=True \ diff --git a/templates/configure.xibuild b/templates/configure.xibuild index d6278ad..1951f3f 100644 --- a/templates/configure.xibuild +++ b/templates/configure.xibuild @@ -1,6 +1,6 @@ build () { ./configure \ - --prefix=/usr + --prefix=/usr \ --bindir=/usr/bin \ --sysconfdir=/etc \ --disable-static diff --git a/templates/make.xibuild b/templates/make.xibuild index 82cdeb9..03b5981 100644 --- a/templates/make.xibuild +++ b/templates/make.xibuild @@ -3,5 +3,5 @@ build () { } package () { - make PREFIX=/usr DESTDIR=$PKGDEST install + make PREFIX=/usr DESTDIR=$PKG_DEST install } |