diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2019-01-31 18:53:14 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2019-01-31 18:53:14 +0100 |
commit | ab9c0fd221389eeb85dc08d266bac96f2bce5e2e (patch) | |
tree | e9bcf96135cf7f757406ed116586dfd79efdd417 /ubuntu/maverick | |
parent | 895b4a50bebfd3f8d442897b4f60b1df4a79671c (diff) | |
download | tde-packaging-ab9c0fd221389eeb85dc08d266bac96f2bce5e2e.tar.gz tde-packaging-ab9c0fd221389eeb85dc08d266bac96f2bce5e2e.zip |
DEB knights: Move extra themes into package knights-themepack.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'ubuntu/maverick')
-rw-r--r-- | ubuntu/maverick/applications/knights/debian/control | 7 | ||||
-rw-r--r-- | ubuntu/maverick/applications/knights/debian/knights-themepack-trinity.install | 1 | ||||
-rw-r--r-- | ubuntu/maverick/applications/knights/debian/knights-trinity.install (renamed from ubuntu/maverick/applications/knights/debian/install) | 1 | ||||
-rwxr-xr-x | ubuntu/maverick/applications/knights/debian/rules | 12 |
4 files changed, 21 insertions, 0 deletions
diff --git a/ubuntu/maverick/applications/knights/debian/control b/ubuntu/maverick/applications/knights/debian/control index fa1d161a6..927dfcbad 100644 --- a/ubuntu/maverick/applications/knights/debian/control +++ b/ubuntu/maverick/applications/knights/debian/control @@ -28,3 +28,10 @@ Description: A chess interface for the Trinity Desktop Environment [Trinity] * Audio cues help alert you to important events. * Novice players can preview potential moves. * Save your unfinished matches and play them again later. + +Package: knights-themepack-trinity +Architecture: all +Depends: ${shlibs:Depends} +Enhances: knights-trinity +Description: A chess interface for the Trinity Desktop Environment [Trinity] + This packages contains extra themes. diff --git a/ubuntu/maverick/applications/knights/debian/knights-themepack-trinity.install b/ubuntu/maverick/applications/knights/debian/knights-themepack-trinity.install new file mode 100644 index 000000000..790c5478d --- /dev/null +++ b/ubuntu/maverick/applications/knights/debian/knights-themepack-trinity.install @@ -0,0 +1 @@ +opt/trinity/share/apps/knights/themes diff --git a/ubuntu/maverick/applications/knights/debian/install b/ubuntu/maverick/applications/knights/debian/knights-trinity.install index 013fe66c3..d0c4719c4 100644 --- a/ubuntu/maverick/applications/knights/debian/install +++ b/ubuntu/maverick/applications/knights/debian/knights-trinity.install @@ -1 +1,2 @@ +opt/trinity debian/knights.xpm /opt/trinity/share/pixmaps diff --git a/ubuntu/maverick/applications/knights/debian/rules b/ubuntu/maverick/applications/knights/debian/rules index 18b1c07e2..3992c290c 100755 --- a/ubuntu/maverick/applications/knights/debian/rules +++ b/ubuntu/maverick/applications/knights/debian/rules @@ -18,3 +18,15 @@ DEB_CMAKE_EXTRA_FLAGS := \ -DCMAKE_SKIP_RPATH="OFF" \ -DBUILD_ALL="ON" \ -DWITH_ALL_OPTIONS="ON" + +binary-install/knights-trinity:: + @dh_testdir + # remove extra themes + (cd debian/$(cdbs_curpkg)/opt/trinity/share/apps/knights/themes/ && \ + ls -1 | grep -v "K.Default\.tar\.gz" | xargs -r rm) + +binary-install/knights-themepack-trinity:: + @dh_testdir + # remove default theme + (cd debian/$(cdbs_curpkg)/opt/trinity/share/apps/knights/themes/ && \ + ls -1 | grep "K.Default\.tar\.gz" | xargs -r rm) |