gnu: ois: Update to 1.5.
* gnu/packages/game-development.scm (ois): Update to 1.5. [source]: Use tagged VERSION and GIT-FILE-NAME. [build-system]: Switch to CMAKE-BUILD-SYSTEM. [arguments]: Disable tests. [native-inputs]: Remove them. [inputs]: Replace libxaw with libx11.
This commit is contained in:
parent
e05da20448
commit
006345c16e
|
@ -1005,28 +1005,21 @@ painted with a mouse.")
|
||||||
(define-public ois
|
(define-public ois
|
||||||
(package
|
(package
|
||||||
(name "ois")
|
(name "ois")
|
||||||
(version "1.3")
|
(version "1.5")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
;; Development has moved to github and there are no recent tarball
|
|
||||||
;; releases.
|
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/wgois/OIS.git")
|
(url "https://github.com/wgois/OIS.git")
|
||||||
(commit "bb75ccc1aabc1c547195579963601ff6080ca2f2")))
|
(commit (string-append "v" version))))
|
||||||
(file-name (string-append name "-" version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "0g8krgq5bdx2rw7ig0xva4kqv4x815672i7z6lljp3n8847wmypa"))))
|
||||||
"0w0pamjc3vj0jr718hysrw8x076fq6n9rd6wcb36sn2jd0lqvi98"))))
|
(build-system cmake-build-system)
|
||||||
(build-system gnu-build-system)
|
(arguments
|
||||||
(native-inputs
|
`(#:tests? #f)) ; no test suite
|
||||||
`(("autoconf" ,autoconf)
|
|
||||||
("automake" ,automake)
|
|
||||||
("libtool" ,libtool)
|
|
||||||
("m4" ,m4)
|
|
||||||
("pkg-config" ,pkg-config)))
|
|
||||||
(inputs
|
(inputs
|
||||||
`(("libxaw" ,libxaw)))
|
`(("libx11" ,libx11)))
|
||||||
(synopsis "Object Oriented Input System")
|
(synopsis "Object Oriented Input System")
|
||||||
(description
|
(description
|
||||||
"Cross Platform Object Oriented Input Lib System is a cross platform,
|
"Cross Platform Object Oriented Input Lib System is a cross platform,
|
||||||
|
|
Loading…
Reference in New Issue