-
-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from suhan-paradkar/main
Clean Up Messy Code
- Loading branch information
Showing
4 changed files
with
53 additions
and
132 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
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,25 @@ | ||
#Optional tools that will be compiled on-device | ||
|
||
pkg install perl | ||
|
||
cpan install XML::Parser | ||
|
||
wget https://launchpad.net/intltool/trunk/0.51.0/+download/intltool-0.51.0.tar.gz | ||
tar -xvf intltool-0.51.0.tar.gz | ||
cd intltool-0.51.0/ | ||
autoreconf -fi | ||
./configure --prefix=$PREFIX | ||
make | ||
make install | ||
cd .. | ||
|
||
wget https://archive.xfce.org/src/xfce/xfce4-dev-tools/4.16/xfce4-dev-tools-4.16.0.tar.bz2 | ||
tar -xvf xfce4-dev-tools-4.16.0.tar.bz2 | ||
cd xfce4-dev-tools-4.16.0/ | ||
autoreconf -fi | ||
./configure --prefix=$PREFIX | ||
make | ||
make install | ||
cd .. | ||
|
||
exit |
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
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