-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update outdated config.{guess,sub}. I have sent an email report as said in http://squeakvm.org/unix/.
- Loading branch information
1 parent
8f7da65
commit c7a88da
Showing
2 changed files
with
6 additions
and
32 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,10 @@ | ||
diff --git PKGBUILD PKGBUILD | ||
index 573ff2a..2c849b9 100644 | ||
--- PKGBUILD | ||
+++ PKGBUILD | ||
@@ -13,8 +13,16 @@ url="http://squeakvm.org" | ||
license=('custom:MIT' 'APACHE') | ||
depends=('libgl' 'libpulse' 'libxrender') | ||
makedepends=('cmake') | ||
-source=(http://squeakvm.org/unix/release/Squeak-$pkgver-src.tar.gz) | ||
-md5sums=('8a5cb1d6899d55df56154fab8716e034') | ||
+source=(http://squeakvm.org/unix/release/Squeak-$pkgver-src.tar.gz | ||
+ "fix_not_literal_format.patch") | ||
+md5sums=('8a5cb1d6899d55df56154fab8716e034' | ||
+ 'fcd5caf14353490280231a737c8a74b6') | ||
+ | ||
+prepare() { | ||
+ cd Squeak-$pkgver-src/ | ||
+ | ||
+ patch -Np1 -i "${srcdir}/fix_not_literal_format.patch" | ||
+} | ||
|
||
@@ -26,6 +26,7 @@ prepare() { | ||
build() { | ||
cd Squeak-$pkgver-src/ | ||
|
||
+ cp /usr/share/autoconf/build-aux/config.{guess,sub} unix/cmake | ||
./unix/cmake/configure --prefix=/usr --without-quartz --with-x \ | ||
--enable-mpg-mmx | ||
|