wok-next diff dev86/receipt @ rev 19985
Close dependency loop mesa17 <--> libva
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Wed Oct 18 13:40:04 2017 +0300 (2017-10-18) |
parents | e3270f32432e |
children | e323d0535e2c |
line diff
1.1 --- a/dev86/receipt Wed Jul 06 00:15:11 2016 +0200 1.2 +++ b/dev86/receipt Wed Oct 18 13:40:04 2017 +0300 1.3 @@ -6,12 +6,13 @@ 1.4 SHORT_DESC="Linux 8086 development environment." 1.5 MAINTAINER="pascal.bellard@slitaz.org" 1.6 LICENSE="GPL2" 1.7 -TARBALL="$PACKAGE-$VERSION.tar.gz" 1.8 WEB_SITE="http://www.debath.co.uk/" 1.9 -WGET_URL="https://github.com/lkundrak/dev86/archive/v$VERSION.tar.gz" 1.10 TAGS="compiler C assembler 8086" 1.11 1.12 -BUILD_DEPENDS="wget" 1.13 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.14 +WGET_URL="$GITHUB/lkundrak/dev86/tarball/v$VERSION" 1.15 + 1.16 +BUILD_DEPENDS="coreutils-file-output-full" # for `cat -v` 1.17 1.18 # Rules to configure and make the package. 1.19 compile_rules() 1.20 @@ -36,8 +37,9 @@ 1.21 { 1.22 [ "$1" ] && return 1.23 register=/proc/sys/fs/binfmt_misc/register 1.24 - [ -f $register ] || modprobe binfmt_misc 1.25 + [ -f $register ] || modprobe binfmt_misc 2> /dev/null || true 1.26 [ -f $register ] && cat > $register <<EOT 1.27 :i86-elks:M::\x01\x03\x20\x00:\xff\xff\xff\x83:/usr/bin/elksemu: 1.28 EOT 1.29 + true 1.30 }