diff options
| -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 |