[PR #717] [MERGED] [IMPROVEMENT]Make CCExtractor more linux standard compliant #678 #1546

Open
opened 2026-01-29 17:17:06 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/CCExtractor/ccextractor/pull/717
Author: @techfreakworm
Created: 3/14/2017
Status: Merged
Merged: 3/22/2017
Merged by: @cfsmp3

Base: masterHead: master


📝 Commits (10+)

  • 5f12bd7 Autoconf scripts added
  • 72c797b created autogen.sh
  • 6f9b8a6 Corrected autogen.sh
  • 0632c3a Updated configure.ac
  • 00522bc Updated README.md
  • 7bb9a5f Updated Makefile.am and configure.ac
  • b0ec1a0 Added man pages for ccextractor
  • 460f4e9 Changes to create release tarball scripts
  • 0bc2dba Merge remote-tracking branch 'upstream/master'
  • 44adf64 Corrected debian.sh and Makefile.am for package creation

📊 Changes

9 files changed (+532 additions, -173 deletions)

View changed files

📝 .gitignore (+32 -0)
📝 README.md (+22 -2)
linux/Makefile (+0 -167)
linux/Makefile.am (+316 -0)
linux/autogen.sh (+4 -0)
linux/cleanup (+4 -0)
linux/configure.ac (+114 -0)
📝 package_creators/debian.sh (+10 -4)
package_creators/tarball.sh (+30 -0)

📄 Description

Please prefix your pull request with one of the following: [FEATURE] [FIX] [IMPROVEMENT].

In raising this pull request, I confirm the following (please check boxes):

  • I have read and understood the contributors guide.
  • I have checked that another pull request for this purpose does not exist.
  • I have considered, and confirmed that this submission will be valuable to others.
  • I accept that this submission may not be used, and the pull request closed at the will of the maintainer.
  • I give this submission freely, and claim no ownership to its content.

My familiarity with the project is as follows (check one):

  • I have never used CCExtractor.
  • I have used CCExtractor just a couple of times.
  • I absolutely love CCExtractor, but have not contributed previously.
  • I am an active contributor to CCExtractor.

-Added autoconf scripts such that they would be able to generate a tarball using make dist and create a script in ccextractor/package_creators for the same.
-No pre-existing files changed.
-Pre-existing build mechanisms stay intact.
-Updated README.md accordingly.
-Wrote man pages in ccextractor/linux.
-wrote tarball.sh for *tar.gz release package creation in ccextractor/linux.
Resolves many issues stated in #678


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/CCExtractor/ccextractor/pull/717 **Author:** [@techfreakworm](https://github.com/techfreakworm) **Created:** 3/14/2017 **Status:** ✅ Merged **Merged:** 3/22/2017 **Merged by:** [@cfsmp3](https://github.com/cfsmp3) **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (10+) - [`5f12bd7`](https://github.com/CCExtractor/ccextractor/commit/5f12bd7538afe4f1c360aeab92393b42a0debb1f) Autoconf scripts added - [`72c797b`](https://github.com/CCExtractor/ccextractor/commit/72c797bf83b44f6a49dcd0349c201b5e57a1f41e) created autogen.sh - [`6f9b8a6`](https://github.com/CCExtractor/ccextractor/commit/6f9b8a6d4229f04fc27fc55d420cf8c9c93cc05e) Corrected autogen.sh - [`0632c3a`](https://github.com/CCExtractor/ccextractor/commit/0632c3a023d0cb627c427b3af8cbc4041b0de986) Updated configure.ac - [`00522bc`](https://github.com/CCExtractor/ccextractor/commit/00522bc950c76647acf5c262412577e10f04b602) Updated README.md - [`7bb9a5f`](https://github.com/CCExtractor/ccextractor/commit/7bb9a5f7834b673eabdc7d9ae0dc6baf222362f1) Updated Makefile.am and configure.ac - [`b0ec1a0`](https://github.com/CCExtractor/ccextractor/commit/b0ec1a073b4e055f96be7b379dc6e39792ec2ee5) Added man pages for ccextractor - [`460f4e9`](https://github.com/CCExtractor/ccextractor/commit/460f4e9866725e44222a1a1819fd85f3390952c4) Changes to create release tarball scripts - [`0bc2dba`](https://github.com/CCExtractor/ccextractor/commit/0bc2dbac4ac6bdb4b6c18e78d7243ebc475fefd0) Merge remote-tracking branch 'upstream/master' - [`44adf64`](https://github.com/CCExtractor/ccextractor/commit/44adf6427b7bec9246f89849600ad73e17d0b1ea) Corrected debian.sh and Makefile.am for package creation ### 📊 Changes **9 files changed** (+532 additions, -173 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+32 -0) 📝 `README.md` (+22 -2) ➖ `linux/Makefile` (+0 -167) ➕ `linux/Makefile.am` (+316 -0) ➕ `linux/autogen.sh` (+4 -0) ➕ `linux/cleanup` (+4 -0) ➕ `linux/configure.ac` (+114 -0) 📝 `package_creators/debian.sh` (+10 -4) ➕ `package_creators/tarball.sh` (+30 -0) </details> ### 📄 Description Please prefix your pull request with one of the following: **[FEATURE]** **[FIX]** **[IMPROVEMENT]**. **In raising this pull request, I confirm the following (please check boxes):** - [x] I have read and understood the [contributors guide](https://github.com/CCExtractor/ccextractor/blob/master/.github/CONTRIBUTING.md). - [x] I have checked that another pull request for this purpose does not exist. - [x] I have considered, and confirmed that this submission will be valuable to others. - [x] I accept that this submission may not be used, and the pull request closed at the will of the maintainer. - [x] I give this submission freely, and claim no ownership to its content. **My familiarity with the project is as follows (check one):** - [ ] I have never used CCExtractor. - [x] I have used CCExtractor just a couple of times. - [ ] I absolutely love CCExtractor, but have not contributed previously. - [ ] I am an active contributor to CCExtractor. --- -Added autoconf scripts such that they would be able to generate a tarball using `make dist` and create a script in ccextractor/package_creators for the same. -No pre-existing files changed. -Pre-existing build mechanisms stay intact. -Updated README.md accordingly. -Wrote man pages in ccextractor/linux. -wrote tarball.sh for *tar.gz release package creation in ccextractor/linux. Resolves many issues stated in #678 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 17:17:06 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/ccextractor#1546