1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
Description: configure this package
Yorick packages are usually configured by running yorick -batch make.i
which modifies Makefile. Modifying source files at build time is not
very well supported in the quilt / git workflow, so let's just patch
Makefile and not run yorick -batch make.i at build time.
Author: Thibaut Paumard <paumard@users.sourceforge.net>
Origin: Vendor
Forwarded: not-needed
Last-Update: 2012-06-27
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,9 @@
-Y_MAKEDIR=/usr/lib/yorick/2.2
-Y_EXE=/usr/lib/yorick/2.2/bin/yorick
+Y_MAKEDIR=/usr/lib/yorick
+Y_EXE=/usr/lib/yorick/bin/yorick
Y_EXE_PKGS=
-Y_EXE_HOME=/usr/lib/yorick/2.2
-Y_EXE_SITE=/usr/share/yorick/2.2
+Y_EXE_HOME=/usr/lib/yorick
+Y_EXE_SITE=/usr/lib/yorick
+Y_HOME_PKG=
# ----------------------------------------------------- optimization flags
|