Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
eepm
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Builder Robot
eepm
Commits
a6f2ff80
Commit
a6f2ff80
authored
Jan 05, 2026
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
epm play: add smartgit (Git GUI client)
parent
ad92f5b5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
75 additions
and
0 deletions
+75
-0
smartgit.sh
pack.d/smartgit.sh
+57
-0
smartgit.sh
play.d/smartgit.sh
+18
-0
No files found.
pack.d/smartgit.sh
0 → 100755
View file @
a6f2ff80
#!/bin/sh
TAR
=
"
$1
"
RETURNTARNAME
=
"
$2
"
.
$(
dirname
$0
)
/common.sh
erc unpack
"
$TAR
"
||
fatal
cd
smartgit
||
fatal
# Get version from version file or directory name
VERSION
=
$(
cat
lib/smartgit-version.txt 2>/dev/null
||
basename
"
$TAR
"
|
grep
-oP
'smartgit-\K[0-9_]+'
)
VERSION
=
$(
echo
"
$VERSION
"
|
sed
's/_/./g'
)
[
-n
"
$VERSION
"
]
||
VERSION
=
"1.0"
PKGNAME
=
$PRODUCT
-
$VERSION
cd
..
mkdir
-p
opt
mv
smartgit opt/
$PRODUCT
mkdir
-p
usr/bin
ln
-s
/opt/
$PRODUCT
/bin/smartgit.sh usr/bin/
$PRODUCT
# Install icons
for
size
in
32 48 64 128 256
;
do
icon
=
"opt/
$PRODUCT
/bin/smartgit-
$size
.png"
if
[
-f
"
$icon
"
]
;
then
mkdir
-p
usr/share/icons/hicolor/
${
size
}
x
${
size
}
/apps
cp
"
$icon
"
usr/share/icons/hicolor/
${
size
}
x
${
size
}
/apps/
$PRODUCT
.png
fi
done
mkdir
-p
usr/share/applications
cat
>
usr/share/applications/
$PRODUCT
.desktop
<<
EOF
[Desktop Entry]
Name=SmartGit
Comment=Git GUI client
Exec=
$PRODUCT
Icon=
$PRODUCT
Terminal=false
Type=Application
Categories=Development;RevisionControl;
EOF
cat
<<
EOF
>
$PKGNAME
.tar.eepm.yaml
name:
$PRODUCT
group: Development/Other
license: Proprietary
url: https://www.syntevo.com/smartgit/
summary: SmartGit - Git GUI client
description: SmartGit is a graphical Git client with support for GitHub, GitLab, and Bitbucket.
EOF
erc pack
$PKGNAME
.tar opt usr
||
fatal
return_tar
$PKGNAME
.tar
play.d/smartgit.sh
0 → 100755
View file @
a6f2ff80
#!/bin/sh
PKGNAME
=
smartgit
SUPPORTEDARCHES
=
"x86_64"
VERSION
=
"
$2
"
DESCRIPTION
=
"SmartGit - Git GUI client with GitHub, GitLab, Bitbucket integration"
URL
=
"https://www.syntevo.com/smartgit/"
.
$(
dirname
$0
)
/common.sh
if
[
"
$VERSION
"
=
"*"
]
;
then
VERSION
=
$(
eget
-q
-O-
https://www.smartgit.dev/download/ |
grep
-oP
'smartgit-\K[0-9_]+(?=-linux-amd64\.tar\.gz)'
|
head
-1
)
[
-n
"
$VERSION
"
]
||
fatal
"Can't get version"
fi
PKGURL
=
"https://download.smartgit.dev/smartgit/smartgit-
$VERSION
-linux-amd64.tar.gz"
install_pack_pkgurl
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment