diff options
author | Emanuel Sprung <emanuel.sprung@gmail.com> | 2020-02-04 01:11:35 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-02-06 14:06:23 +0100 |
commit | f46d80ac4fc2d9c4d3da9baf5515d2af9c577596 (patch) | |
tree | 2e0ad4da9691ebb725851756ac7f670309f1c17c /Ports/klong | |
parent | 991953ab0a957484ca1333de466374952381d1b2 (diff) | |
download | serenity-f46d80ac4fc2d9c4d3da9baf5515d2af9c577596.zip |
Ports: Added checksums / signature files and other fixes
* Use ${version} instead of explicit version numbers in urls/filenames
* Move -L option to port script, as this is always good
* Fix some various other stuff
Diffstat (limited to 'Ports/klong')
-rw-r--r-- | Ports/klong/patches/klong.patch | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Ports/klong/patches/klong.patch b/Ports/klong/patches/klong.patch index 4d8be18b94..e1bd99cd9a 100644 --- a/Ports/klong/patches/klong.patch +++ b/Ports/klong/patches/klong.patch @@ -6,21 +6,21 @@ +CC= i686-pc-serenity-gcc $(CFLAGS) V= 20190330 R= 20190926 - + # Modules to load into image file OPTIONS=-l nstat -l nplot -l time - + -all: kg klong.image +all: kg - + klong.image: kg ./kg -n $(OPTIONS) -o klong.image @@ -48,3 +48,8 @@ - + mksums: clean find . -type f | grep -v _csums | grep -v klong2015 | csum >_csums + +install: + install kg ${DESTDIR}/usr/local/bin -+ mkdir ${DESTDIR}/usr/local/lib/klong ++ mkdir -p ${DESTDIR}/usr/local/lib/klong + install -m 644 lib/* ${DESTDIR}/usr/local/lib/klong |