-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
drwxr-xr-x root/root usr/ | ||
drwxr-xr-x root/root usr/bin/ | ||
-rwxr-xr-x root/root usr/bin/scrot | ||
drwxr-xr-x root/root usr/share/ | ||
drwxr-xr-x root/root usr/share/man/ | ||
drwxr-xr-x root/root usr/share/man/man1/ | ||
-rw-r--r-- root/root usr/share/man/man1/scrot.1.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
37854f05578dfa6ee0ecbe581dc3018b scrot-1.10.tar.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Description: Command-line screenshot utility for X | ||
# URL: https://github.com/resurrecting-open-source-projects/scrot | ||
# Depends on: autoconf-archive imlib2 xorg-libxcomposite xorg-libxinerama | ||
|
||
name=scrot | ||
version=1.10 | ||
release=1 | ||
source=https://github.com/resurrecting-open-source-projects/scrot/archive/$version/scrot-$version.tar.gz | ||
|
||
build() { | ||
mkdir build; cd build | ||
|
||
autoreconf -fi ../$name-$version | ||
../$name-$version/configure \ | ||
--prefix=/usr \ | ||
--mandir=/usr/share/man \ | ||
|
||
make V=1 | ||
make DESTDIR=$PKG install | ||
|
||
# remove junk | ||
rm -r $PKG/usr/share/doc | ||
} |