diff options
author | Raptor Engineering Development Team <support@raptorengineering.com> | 2019-09-16 16:06:08 -0500 |
---|---|---|
committer | Raptor Engineering Development Team <support@raptorengineering.com> | 2019-09-27 15:57:23 -0500 |
commit | 398a4b85d4374a35f580db998b854261a5a7db74 (patch) | |
tree | 9464d1f07b64b6357c08b923e7fb4ba1ff4bf7cd /package/opentyrian-data | |
parent | ef2bf42027bd0bce7691bbdf9d2e7e67ef68fa79 (diff) | |
download | buildroot-2019.02-op-build.tar.gz buildroot-2019.02-op-build.zip |
Initial pass at removing binary-only, unlicensed, and proprietary packages from buildroot tree2019.02-op-build
Note that DAHDI is only being removed due to poor packaging -- it does not require binary
firmware on some cards, but the buildroot packaging for it unconditionally pulls in binary-only
firmware regardless.
Diffstat (limited to 'package/opentyrian-data')
-rw-r--r-- | package/opentyrian-data/Config.in | 9 | ||||
-rw-r--r-- | package/opentyrian-data/opentyrian-data.hash | 2 | ||||
-rw-r--r-- | package/opentyrian-data/opentyrian-data.mk | 23 |
3 files changed, 0 insertions, 34 deletions
diff --git a/package/opentyrian-data/Config.in b/package/opentyrian-data/Config.in deleted file mode 100644 index dd3b0c1328..0000000000 --- a/package/opentyrian-data/Config.in +++ /dev/null @@ -1,9 +0,0 @@ -config BR2_PACKAGE_OPENTYRIAN_DATA - bool "OpenTyrian data" - depends on BR2_PACKAGE_OPENTYRIAN - help - Data files to use with OpenTyrian game. Currently only the - original Tyrian 2.1 data files, that have been released as - Freeware in 2004, are compatible. - - http://code.google.com/p/opentyrian/wiki/FAQ diff --git a/package/opentyrian-data/opentyrian-data.hash b/package/opentyrian-data/opentyrian-data.hash deleted file mode 100644 index 9a7079c4ae..0000000000 --- a/package/opentyrian-data/opentyrian-data.hash +++ /dev/null @@ -1,2 +0,0 @@ -# Locally calculated -sha256 7790d09a2a3addcd33c66ef063d5900eb81cc9c342f4807eb8356364dd1d9277 tyrian21.zip diff --git a/package/opentyrian-data/opentyrian-data.mk b/package/opentyrian-data/opentyrian-data.mk deleted file mode 100644 index 9e38b61bfa..0000000000 --- a/package/opentyrian-data/opentyrian-data.mk +++ /dev/null @@ -1,23 +0,0 @@ -################################################################################ -# -# opentyrian-data -# -################################################################################ - -OPENTYRIAN_DATA_VERSION = 2.1 -OPENTYRIAN_DATA_SITE = http://www.camanis.net/opentyrian -OPENTYRIAN_DATA_SOURCE = tyrian21.zip -OPENTYRIAN_DATA_LICENSE = Freeware - -define OPENTYRIAN_DATA_EXTRACT_CMDS - $(UNZIP) -d $(@D) $(OPENTYRIAN_DATA_DL_DIR)/$(OPENTYRIAN_DATA_SOURCE) -endef - -define OPENTYRIAN_DATA_INSTALL_TARGET_CMDS - mkdir -p $(TARGET_DIR)/usr/share/opentyrian/data/ - cp $(@D)/tyrian21/* $(TARGET_DIR)/usr/share/opentyrian/data/ - rm -f $(TARGET_DIR)/usr/share/opentyrian/data/*.doc - rm -f $(TARGET_DIR)/usr/share/opentyrian/data/*.exe -endef - -$(eval $(generic-package)) |