diff options
| author | Andrew Guschin <saintruler@gmail.com> | 2020-07-21 05:47:09 -0400 |
|---|---|---|
| committer | Andrew Guschin <saintruler@gmail.com> | 2020-07-21 05:47:09 -0400 |
| commit | 1e96ade8021fa56f1d109c50030eb7383bffd79f (patch) | |
| tree | a188253fe34f0343ca1269c11c5d263c985432fe | |
| parent | 7f03907eedfb7ceda46c0b9eac64e2cbe17c2b34 (diff) | |
| -rw-r--r-- | DEBIAN/control | 2 | ||||
| -rwxr-xr-x | build.sh | 2 | ||||
| -rw-r--r-- | st.desktop | 6 |
3 files changed, 9 insertions, 1 deletions
diff --git a/DEBIAN/control b/DEBIAN/control index 9c96284..b467992 100644 --- a/DEBIAN/control +++ b/DEBIAN/control @@ -1,5 +1,5 @@ Package: st -Version: 0.8.4-2 +Version: 0.8.4-3 Provides: st Maintainer: Andrew Guschin <saintruler@gmail.com> Architecture: amd64 @@ -7,6 +7,7 @@ src="https://git.vasthecat.ru/$pkg_name.git" git clone "$src" "$base_dir/$pkg_name-src" mkdir -p "$pkg_folder/usr/bin" +mkdir -p "$pkg_folder/usr/share/applications" cp -r DEBIAN "$pkg_folder" cd "$base_dir/$pkg_name-src" @@ -17,6 +18,7 @@ sed -i "/tic/d" "Makefile" make make install +cp "$base_dir/st.desktop" "$pkg_folder/usr/share/applications" cd "$base_dir" fakeroot dpkg-deb --build "$pkg_folder" diff --git a/st.desktop b/st.desktop new file mode 100644 index 0000000..491b0fb --- /dev/null +++ b/st.desktop @@ -0,0 +1,6 @@ +[Desktop Entry] +Name=st +Type=Application +Comment=Suckless terminal +Exec=st +Icon=terminal |