Date: Monday, January 9, 2023 @ 10:35:25
Author: alerque
Revision: 1382093
archrelease: copy trunk to community-x86_64
Added:
xmake/repos/community-x86_64/PKGBUILD
(from rev 1382092, xmake/trunk/PKGBUILD)
Deleted:
xmake/repos/community-x86_64/PKGBUILD
----------+
PKGBUILD | 55 +++++++++++++++++++++++++++----------------------------
1 file changed, 27 insertions(+), 28 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2023-01-09 10:35:12 UTC (rev 1382092)
+++ PKGBUILD 2023-01-09 10:35:25 UTC (rev 1382093)
@@ -1,28 +0,0 @@
-# Maintainer: Caleb Maclennan <[email protected]>
-# Contributor: <[email protected]>
-# Contributor: lumpyzhu <[email protected]>
-
-pkgname=xmake
-pkgver=2.7.4
-pkgrel=1
-pkgdesc='A cross-platform build utility based on Lua'
-arch=(x86_64 i686 aarch64)
-url="https://github.com/xmake-io/$pkgname"
-license=(Apache)
-makedepends=(ncurses
- readline)
-_archive="$pkgname-v$pkgver"
-source=("$url/releases/download/v$pkgver/$_archive.tar.gz")
-sha256sums=('d490ff8825fa53fe5abfb549310cb54a2dfef1ebd3f82e24548483772994e06a')
-
-# WARNING: Source tarball does not have any top level diretory!
-
-build() {
- # cd "$_archive"
- make build
-}
-
-package() {
- # cd "$_archive"
- make install DESTDIR="$pkgdir" PREFIX="/usr"
-}
Copied: xmake/repos/community-x86_64/PKGBUILD (from rev 1382092,
xmake/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2023-01-09 10:35:25 UTC (rev 1382093)
@@ -0,0 +1,27 @@
+# Maintainer: Caleb Maclennan <[email protected]>
+# Contributor: <[email protected]>
+# Contributor: lumpyzhu <[email protected]>
+
+pkgname=xmake
+pkgver=2.7.5
+pkgrel=1
+pkgdesc='A cross-platform build utility based on Lua'
+arch=(x86_64 i686 aarch64)
+url="https://github.com/xmake-io/$pkgname"
+license=(Apache)
+makedepends=(ncurses
+ readline)
+_archive="$pkgname-$pkgver"
+source=("$url/releases/download/v$pkgver/${_archive/-/-v}.tar.gz")
+sha256sums=('fc4a39a0c649e7469a2da2d66618ca3090050b1656ff43cf1fd46abc86232a3d')
+
+build() {
+ cd "$_archive"
+ ./configure
+ make
+}
+
+package() {
+ cd "$_archive"
+ make install DESTDIR="$pkgdir" PREFIX="/usr"
+}